import { fetchUserFollowing } from '@/lib/api/account/profile'; import FollowList from '../_component/FollowList'; type Props = { params: Promise<{ sid: string }>; }; const PER_PAGE = 20; export default async function UserFollowingPage({ params }: Props) { const { sid } = await params; const res = await fetchUserFollowing(sid, 1, PER_PAGE); const data = res.data ?? { total: 0, list: [] }; return ( <>

팔로우

); }